From: Jonathan Lebon Date: Thu, 18 Aug 2016 14:37:11 +0000 (-0400) Subject: pull_with_options: fix stray return FALSE X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~48^2~14 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=76166cb52eae8b2637503e5cac9743b283d429be;p=ostree.git pull_with_options: fix stray return FALSE Closes: #465 Approved by: cgwalters --- diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index 43ec2ff6..f990c6b2 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -2676,7 +2676,7 @@ ostree_repo_pull_with_options (OstreeRepo *self, if (G_UNLIKELY (errno != EEXIST)) { glnx_set_error_from_errno (error); - return FALSE; + goto out; } }